home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / distutils / command / build_scripts.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  4KB  |  123 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. """distutils.command.build_scripts
  5.  
  6. Implements the Distutils 'build_scripts' command."""
  7. __revision__ = '$Id: build_scripts.py,v 1.25 2004/11/10 22:23:15 loewis Exp $'
  8. import sys
  9. import os
  10. import re
  11. from stat import ST_MODE
  12. from distutils import sysconfig
  13. from distutils.core import Command
  14. from distutils.dep_util import newer
  15. from distutils.util import convert_path
  16. from distutils import log
  17. first_line_re = re.compile('^#!.*python[0-9.]*([ \t].*)?$')
  18.  
  19. class build_scripts(Command):
  20.     description = '"build" scripts (copy and fixup #! line)'
  21.     user_options = [
  22.         ('build-dir=', 'd', 'directory to "build" (copy) to'),
  23.         ('force', 'f', 'forcibly build everything (ignore file timestamps'),
  24.         ('executable=', 'e', 'specify final destination interpreter path')]
  25.     boolean_options = [
  26.         'force']
  27.     
  28.     def initialize_options(self):
  29.         self.build_dir = None
  30.         self.scripts = None
  31.         self.force = None
  32.         self.executable = None
  33.         self.outfiles = None
  34.  
  35.     
  36.     def finalize_options(self):
  37.         self.set_undefined_options('build', ('build_scripts', 'build_dir'), ('force', 'force'), ('executable', 'executable'))
  38.         self.scripts = self.distribution.scripts
  39.  
  40.     
  41.     def get_source_files(self):
  42.         return self.scripts
  43.  
  44.     
  45.     def run(self):
  46.         if not self.scripts:
  47.             return None
  48.         
  49.         self.copy_scripts()
  50.  
  51.     
  52.     def copy_scripts(self):
  53.         '''Copy each script listed in \'self.scripts\'; if it\'s marked as a
  54.         Python script in the Unix way (first line matches \'first_line_re\',
  55.         ie. starts with "\\#!" and contains "python"), then adjust the first
  56.         line to refer to the current Python interpreter as we copy.
  57.         '''
  58.         self.mkpath(self.build_dir)
  59.         outfiles = []
  60.         for script in self.scripts:
  61.             adjust = 0
  62.             script = convert_path(script)
  63.             outfile = os.path.join(self.build_dir, os.path.basename(script))
  64.             outfiles.append(outfile)
  65.             if not (self.force) and not newer(script, outfile):
  66.                 log.debug('not copying %s (up-to-date)', script)
  67.                 continue
  68.             
  69.             
  70.             try:
  71.                 f = open(script, 'r')
  72.             except IOError:
  73.                 if not self.dry_run:
  74.                     raise 
  75.                 
  76.                 f = None
  77.  
  78.             first_line = f.readline()
  79.             if not first_line:
  80.                 self.warn('%s is an empty file (skipping)' % script)
  81.                 continue
  82.             
  83.             match = first_line_re.match(first_line)
  84.             if match:
  85.                 adjust = 1
  86.                 if not match.group(1):
  87.                     pass
  88.                 post_interp = ''
  89.             
  90.             if adjust:
  91.                 log.info('copying and adjusting %s -> %s', script, self.build_dir)
  92.                 if not self.dry_run:
  93.                     outf = open(outfile, 'w')
  94.                     if not sysconfig.python_build:
  95.                         outf.write('#!%s%s\n' % (self.executable, post_interp))
  96.                     else:
  97.                         outf.write('#!%s%s\n' % (os.path.join(sysconfig.get_config_var('BINDIR'), 'python' + sysconfig.get_config_var('EXE')), post_interp))
  98.                     outf.writelines(f.readlines())
  99.                     outf.close()
  100.                 
  101.                 if f:
  102.                     f.close()
  103.                 
  104.             f
  105.             f.close()
  106.             self.copy_file(script, outfile)
  107.         
  108.         if os.name == 'posix':
  109.             for file in outfiles:
  110.                 if self.dry_run:
  111.                     log.info('changing mode of %s', file)
  112.                     continue
  113.                 oldmode = os.stat(file)[ST_MODE] & 4095
  114.                 newmode = (oldmode | 365) & 4095
  115.                 if newmode != oldmode:
  116.                     log.info('changing mode of %s from %o to %o', file, oldmode, newmode)
  117.                     os.chmod(file, newmode)
  118.                     continue
  119.             
  120.         
  121.  
  122.  
  123.